Install .NET on ubuntu 22.04
Install .NET on ubuntu 22.04#
Install#
.NET SDK
sudo apt install dotnet-sdk-7.0
Template#
dotnet new console --framework net7.0
Hello#
- Replace
Program.cs
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
}
}
}
missing asset
Select ‘yes’ when vscode ask about missing asset Add tasks.json and launch.json files
Add files manually
- Select Run > Add Configuration
- Select
.NET5 + and .NET Core
Tip
f5 build and run in debug